博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
“博客迷”(BlogMi)源码阅读[2]
阅读量:6631 次
发布时间:2019-06-25

本文共 7489 字,大约阅读时间需要 24 分钟。

首页面包括的文件源码如下:

文件实现了:

1.打开所有的错误输出.

2.包括了两个文件.

3.定义了一个404页面.

1 
404 Not Found";12 echo "The page that you have requested could not be found.";13 exit();14 }15 ?>

tag.php源码如下:

文件实现了:

1.实现对全局变量转换成HTML实体并返回的函数.

2.定义了主题URL地址.

3.一些内容类型确定函数.

4.各种内容跳转链接地址生成函数.(首页文件中用正则表达式来匹配这些链接地址)

 

1 
" (大于)转换为 HTML 实体: 5 if ($print) { 6 echo $site_name; 7 return; 8 } 9 return $site_name; 10 } 11 12 function mc_site_desc($print = true) { 13 global $mc_config; 14 $site_desc = htmlspecialchars($mc_config['site_desc']); 15 if ($print) { 16 echo $site_desc; 17 return; 18 } 19 return $site_desc; 20 } 21 22 function mc_site_link($print = true) { 23 global $mc_config; 24 $site_link = $mc_config['site_link']; 25 if ($print) { 26 echo $site_link; 27 return; 28 } 29 return $site_link; 30 } 31 32 function mc_nick_name($print = true) { 33 global $mc_config; 34 $nick_name = htmlspecialchars($mc_config['user_nick']); 35 if ($print) { 36 echo $nick_name; 37 return; 38 } 39 return $nick_name; 40 } 41 42 function mc_theme_url($path, $print = true) { 43 global $mc_config; 44 $url = $mc_config['site_link'].'/files/theme/v/'.$path; 45 if ($print) { 46 echo $url; 47 return; 48 } 49 return $url; 50 } 51 52 function mc_is_post() { 53 global $mc_get_type; 54 return $mc_get_type == 'post'; 55 } 56 57 function mc_is_page() { 58 global $mc_get_type; 59 return $mc_get_type == 'page'; 60 } 61 62 function mc_is_tag() { 63 global $mc_get_type; 64 return $mc_get_type == 'tag'; 65 } 66 67 function mc_is_date() { 68 global $mc_get_type; 69 return $mc_get_type == 'date'; 70 } 71 72 function mc_is_archive() { 73 global $mc_get_type; 74 return $mc_get_type == 'archive'; 75 } 76 77 function mc_tag_name($print=true) { 78 global $mc_get_name; 79 if ($print) { 80 echo htmlspecialchars($mc_get_name); 81 return; 82 } 83 return $mc_get_name; 84 } 85 86 function mc_date_name($print=true) { 87 global $mc_get_name; 88 if ($print) { 89 echo htmlspecialchars($mc_get_name); 90 return; 91 } 92 return $mc_get_name; 93 } 94 95 function mc_has_new() { 96 global $mc_page_num; 97 return $mc_page_num != 1; 98 } 99 100 function mc_has_old() {101 global $mc_page_num, $mc_post_count, $mc_post_per_page;102 return $mc_page_num < ($mc_post_count / $mc_post_per_page);103 }104 105 function mc_goto_old($text) {106 global $mc_get_type, $mc_get_name, $mc_page_num, $mc_config;107 if ($mc_get_type == 'tag') {108 echo '';115 echo $text;116 echo '';117 } 118 elseif ($mc_get_type == 'date') {119 echo '';126 echo $text;127 echo '';128 } else {129 echo '';134 echo $text;135 echo '';136 }137 }138 139 function mc_goto_new($text) {140 global $mc_get_type, $mc_get_name, $mc_page_num, $mc_config;141 if ($mc_get_type == 'tag') {142 echo '';149 echo $text;150 echo '';151 }152 elseif ($mc_get_type == 'date') {153 echo '';160 echo $text;161 echo '';162 } else {163 echo '';168 echo $text;169 echo '';170 }171 }172 173 function mc_date_list($item_begin='
  • ', $item_gap='', $item_end='
  • ') {174 global $mc_dates, $mc_config;175 if (isset($mc_dates)) {176 $date_count = count($mc_dates);177 for ($i = 0; $i < $date_count; $i ++) {178 $date = $mc_dates[$i];179 echo $item_begin;180 echo '';185 echo $date;186 echo '';187 echo $item_end;188 if ($i < $date_count - 1)189 echo $item_gap;190 }191 }192 }193 194 function mc_tag_list($item_begin='
  • ', $item_gap='', $item_end='
  • ') {195 global $mc_tags, $mc_config;196 if (isset($mc_tags)) {197 $tag_count = count($mc_tags);198 for ($i = 0; $i < $tag_count; $i ++) {199 $tag = $mc_tags[$i];200 echo $item_begin;201 echo '';206 echo $tag;207 echo '';208 echo $item_end;209 if ($i < $tag_count - 1)210 echo $item_gap;211 }212 }213 }214 215 function mc_next_post() {216 global $mc_posts, $mc_post_ids, $mc_post_count, $mc_post_i, $mc_post_i_end, $mc_post_id, $mc_post, $mc_page_num, $mc_post_per_page;217 if (!isset($mc_posts))218 return false;219 if (!isset($mc_post_i)) {220 $mc_post_i = 0 + ($mc_page_num - 1) * $mc_post_per_page;221 $mc_post_i_end = $mc_post_i + $mc_post_per_page;222 if ($mc_post_count < $mc_post_i_end)223 $mc_post_i_end = $mc_post_count;224 }225 if ($mc_post_i == $mc_post_i_end)226 return false;227 $mc_post_id = $mc_post_ids[$mc_post_i];228 $mc_post = $mc_posts[$mc_post_id];229 $mc_post_i += 1;230 return true;231 }232 233 function mc_the_title($print = true) {234 global $mc_post;235 if ($print) {236 echo htmlspecialchars($mc_post['title']);237 return;238 }239 return htmlspecialchars($mc_post['title']);240 }241 242 function mc_the_date($print = true) {243 global $mc_post;244 if ($print) {245 echo $mc_post['date'];246 return;247 }248 return $mc_post['date'];249 }250 251 function mc_the_time($print = true) {252 global $mc_post;253 if ($print) {254 echo $mc_post['time'];255 return;256 }257 return $mc_post['time'];258 }259 260 function mc_the_tags($item_begin='', $item_gap=', ', $item_end='') {261 global $mc_post, $mc_config;262 $tags = $mc_post['tags'];263 $count = count($tags);264 for ($i = 0; $i < $count; $i ++) {265 $tag = htmlspecialchars($tags[$i]);266 echo $item_begin;267 echo '';272 echo $tag;273 echo '';274 echo $item_end;275 if ($i < $count - 1)276 echo $item_gap;277 }278 }279 280 function mc_the_content($print = true) {281 global $mc_data;282 if (!isset($mc_data)) {283 global $mc_post_id;284 $data = unserialize(file_get_contents('files/posts/data/'.$mc_post_id.'.dat')); 285 $html = $data['content']; 286 }287 else {288 $html = $mc_data['content'];289 }290 if ($print) {291 echo $html;292 return;293 }294 return $html;295 }296 297 function mc_the_link() {298 global $mc_post_id, $mc_post, $mc_config;299 echo '';304 echo htmlspecialchars($mc_post['title']);305 echo '';306 }307 308 function mc_post_link() {309 global $mc_post_id, $mc_post, $mc_config;310 echo $mc_config['site_link'];311 echo '/?post/';312 echo $mc_post_id;313 }314 315 function mc_page_title() {316 global $mc_post_id, $mc_post, $mc_config;317 echo htmlspecialchars($mc_post['title']);318 }319 320 function mc_can_comment() {321 global $mc_post_id, $mc_post;322 return isset($mc_post['can_comment']) ? $mc_post['can_comment'] == '1' : true;323 }324 325 function mc_comment_code() {326 global $mc_config;327 echo isset($mc_config['comment_code']) ? $mc_config['comment_code'] : '';328 }329 ?>

    conf.php源码如下:

    1.定义全局配置.该配置文件可以通过后台登录修改.管理员帐户密码全是明文的.

    1 
    'http://127.0.0.1:8080', 4 'site_name' => '博客迷', 5 'site_desc' => '不需要数据库的迷你博客程序', 6 'user_name' => 'admin', 7 'user_pass' => '2046', 8 'user_nick' => 'BlogMi', 9 'comment_code' => '',10 )11 ?>

    publish.php源码如下:

    1.该文件是用来存放文章信息的.

    包含博客的id,标题,标签等.每发表一篇博文就会添加一条信息.

    1 
    4 array ( 5 'id' => 'pxvczn', 6 'state' => 'publish', 7 'title' => 'Hello,World!', 8 'tags' => 9 array (10 0 => '妙语',11 1 => '男人',12 2 => '女人',13 ),14 'date' => '2012-04-05',15 'time' => '10:10:10',16 'can_comment' => '1',17 ),18 )19 ?>

     

    转载于:https://www.cnblogs.com/OneL1fe/p/5388332.html

    你可能感兴趣的文章
    ListBox和ComboBox绑定数据简单例子
    查看>>
    CAD2GIS:arcengine注记添加(转载)
    查看>>
    Python之类型转换
    查看>>
    安装ssh服务
    查看>>
    Spin.js-CSS动画进度载入器
    查看>>
    C语言必会面试题(3、耶稣有13个门徒,当中有一个就是出卖耶稣的叛徒,请用排除法找出这位叛徒:13人围坐一圈,从第一个開始报号:1,2,3,1,2,3...。凡是报到“3”就退出圈子,...)...
    查看>>
    【python】打印函数调用栈
    查看>>
    console.time 简单分析javascript动态加入Dom节点的性能
    查看>>
    Win8 Metro(C#)数字图像处理--2.60部分彩色保留算法
    查看>>
    V4L2开发要点【转】
    查看>>
    技术人员转型是件痛苦的事情~
    查看>>
    OKI系列针式打印机更换色带图解教程
    查看>>
    this关键字的解析
    查看>>
    传递多个参数并获取Web API的数据
    查看>>
    HDU 4022 Bombing STL 模拟题
    查看>>
    293. Flip Game
    查看>>
    C#与C++通过socket传送结构体
    查看>>
    ”LC.exe” exited with code -1错误的解决办法
    查看>>
    [置顶] Java中发邮件的6种方法
    查看>>
    asp.net textbox 控件如何清除缓存
    查看>>